home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 194
- Top = 112
- BorderIcons = [biSystemMenu, biMinimize]
- BorderStyle = bsSingle
- Caption = 'Drag Objects'
- ClientHeight = 169
- ClientWidth = 297
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 8
- Top = 16
- Width = 75
- Height = 13
- Caption = 'Hello World'
- DragMode = dmAutomatic
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Verdana'
- Font.Style = [fsBold]
- ParentFont = False
- OnEndDrag = SharedEndDrag
- OnStartDrag = Label1StartDrag
- end
- object Panel1: TPanel
- Left = 136
- Top = 8
- Width = 153
- Height = 153
- TabOrder = 0
- OnDragDrop = Panel1DragDrop
- OnDragOver = Panel1DragOver
- end
- object ListBox1: TListBox
- Left = 8
- Top = 40
- Width = 121
- Height = 121
- DragMode = dmAutomatic
- IntegralHeight = True
- ItemHeight = 13
- Items.Strings = (
- 'One'
- 'Two'
- 'Three'
- 'Four'
- 'Five'
- 'Six'
- 'Seven'
- 'Eight'
- 'Nine'
- 'Ten')
- TabOrder = 1
- OnEndDrag = SharedEndDrag
- OnStartDrag = ListBox1StartDrag
- end
- end
-